home *** CD-ROM | disk | FTP | other *** search
- -- background: 3302 from stack: in
- -- bmap block id: 3448
- -- flags: 0000
- -- background id: 0
- -- name:
- ----- HyperTalk script -----
- on openBackground
- push recent card
- end openBackground
-
-
-
-
- -- part 8 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=227 top=301 right=326 bottom=254
- -- title width / last selected line: 0
- -- icon id / first selected line: 1014 / 1014
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Prev
- ----- HyperTalk script -----
- on mouseUp
- visual effect scroll left fast
- go to previous card
- end mouseUp
-
-
-
- -- part 9 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=269 top=301 right=326 bottom=296
- -- title width / last selected line: 0
- -- icon id / first selected line: 1013 / 1013
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Next
- ----- HyperTalk script -----
- on mouseUp
- visual effect scroll right fast
- go to next card
- end mouseUp
-
-
-
- -- part 10 (button)
- -- low flags: 00
- -- high flags: 0004
- -- rect: left=17 top=297 right=326 bottom=49
- -- title width / last selected line: 0
- -- icon id / first selected line: 21700 / 21700
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Home
- ----- HyperTalk script -----
- on mouseUp
- visual effect iris open
- go Home
- end mouseUp
-
-
-
- -- part 11 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=452 top=299 right=327 bottom=489
- -- title width / last selected line: 0
- -- icon id / first selected line: 1012 / 1012
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Return
- ----- HyperTalk script -----
- on mouseUp
- visual effect iris close
- pop card
- end mouseUp
-
-
-
- -- part 12 (field)
- -- low flags: 00
- -- high flags: 4007
- -- rect: left=33 top=73 right=293 bottom=476
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Text
-
-
- -- part 14 (field)
- -- low flags: 00
- -- high flags: 0002
- -- rect: left=242 top=56 right=73 bottom=476
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Lazy Date
- ----- HyperTalk script -----
- on closefield
- --Script by Robert Wright
- --Compuserve 74776,374
- do "put "&the target&" into lazy"
-
- if chartonum of char 3 of lazy>57 then
- --this handler for 12jan type formats
- get the abbr date
- put char 3 to 5 of lazy && char 1 to 2 of lazy into item 2 of it
- if char 6 to 7 of lazy is not empty then put "19"&char 6 to 7 of lazy into item 3 of it
- end if
-
- if chartonum of char 2 of lazy>57 then
- --this handler of 1jan type format
- get the abbr date
- put char 2 to 4 of lazy && char 1 of lazy into item 2 of it
- if char 5 to 6 of lazy is not empty then put "19"&char 5 to 6 of lazy into item 3 of it
- end if
-
- convert it to long date
- do "put it into "& the target
-
- end closefield
-
-